' ----------------------------------
'  Simple Program 2
' ----------------------------------
'  Please open the Debug window
'  with the Right mouse button
'  and use the "Single step" button 
' ----------------------------------

v1 = Rnd

If v1 > 0.5
	Beep	
	Print ""	
Else
	Print "The v1 value is : " + v1	
EndIf	

'WATCH v1
'EXEC v1 = Rnd
